pass
This commit is contained in:
parent
a1e677b88a
commit
b1b470cbec
|
|
@ -12,4 +12,6 @@ docker-compose.override.yml
|
|||
|
||||
.idea/*
|
||||
.vs/*
|
||||
volumes/*
|
||||
medicine/volumes/*
|
||||
medicine-stack/volumes/*
|
||||
thirdparty-apps/volumes/*
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -16,8 +16,6 @@ services:
|
|||
networks:
|
||||
- default
|
||||
- medicine-network
|
||||
extra_hosts:
|
||||
- "host.docker:${HOST_DOCKER}"
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker-compose stop
|
||||
docker-compose pull
|
||||
docker-compose build
|
||||
docker-compose up -d
|
||||
|
||||
chmod +x update.sh
|
||||
Loading…
Reference in New Issue