1
0
Fork 0
This commit is contained in:
Ilya Mukhortov 2020-07-08 20:17:12 +10:00
parent a1e677b88a
commit b1b470cbec
4 changed files with 31 additions and 3 deletions

4
.gitignore vendored
View File

@ -12,4 +12,6 @@ docker-compose.override.yml
.idea/*
.vs/*
volumes/*
medicine/volumes/*
medicine-stack/volumes/*
thirdparty-apps/volumes/*

View File

@ -0,0 +1,20 @@
version: '3'
services:
medicine-timetable:
image: docker.med-logic.ru/medicine-timetable
container_name: "medicine-timetable"
restart: "always"
ports:
- "882:80"
networks:
- medicine-network
external_links:
- "medicine-nginx:medicine-host"
networks:
medicine-network:
external:
name: "medicine-network"

View File

@ -16,8 +16,6 @@ services:
networks:
- default
- medicine-network
extra_hosts:
- "host.docker:${HOST_DOCKER}"
logging:
driver: "json-file"
options:

View File

@ -0,0 +1,8 @@
#!/bin/sh
docker-compose stop
docker-compose pull
docker-compose build
docker-compose up -d
chmod +x update.sh