22 lines
556 B
YAML
22 lines
556 B
YAML
services:
|
|
konova:
|
|
external_links:
|
|
- postgis:db
|
|
- arnova-nginx-server:arnova
|
|
build: .
|
|
image: "ksp/konova:x.y"
|
|
container_name: "konova-docker"
|
|
command: ./docker-entrypoint.sh
|
|
restart: always
|
|
volumes:
|
|
- /data/apps/konova/uploaded_files:/konova_uploaded_files
|
|
ports:
|
|
- "1337:80"
|
|
|
|
# Instead of an own, new network, we need to connect to the existing one, which is provided by the postgis container
|
|
# NOTE: THIS NETWORK MUST EXIST
|
|
networks:
|
|
default:
|
|
name: postgis_nat_it_backend
|
|
external: true
|