したいこと
- 1つの
docker-compose.yml
に複数コンテナの記述をするのではなく、既存ネットワークに後から作成したコンテナを接続したい。
参考
作成
net1というネットワークを作成
docker create network net1
接続
docker-compose.yml
version: "3"
services:
potmum:
image: tukiyo3/potmum:20170807
restart: always
volumes:
- /etc/localtime:/etc/localtime
- ./db/production.sqlite3:/srv/potmum/db/production.sqlite3
- ./attachment_files/:/srv/potmum/public/attachment_files/
environment:
PRIVATE_MODE: 0
USE_ATTACHMENT_FILE: 1
COLOR_THEME: "green"
#
USE_GITHUB: 0
USE_DEVELOPER: 1
networks:
default:
external:
name: net1
docker-compose.yml
version: "3"
services:
nginx:
image: nginx:alpine
restart: always
volumes:
- ./nginx/htpasswd:/etc/nginx/htpasswd
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
ports:
- 80:80
networks:
default:
external:
name: net1