oliverbooth.dev/docker-compose.yml

36 lines
790 B
YAML
Raw Normal View History

2023-08-04 00:30:13 +00:00
version: '3.9'
services:
oliverbooth:
container_name: oliverbooth.dev
pull_policy: build
2023-08-13 15:38:56 +00:00
build:
context: .
dockerfile: OliverBooth/Dockerfile
2023-08-04 00:30:13 +00:00
volumes:
- type: bind
source: /var/log/oliverbooth/site
target: /app/logs
- type: bind
source: /etc/oliverbooth/site
target: /app/data
2023-08-13 15:38:56 +00:00
ports:
- "2845:2845"
2023-08-04 00:30:13 +00:00
restart: always
2023-08-12 19:45:09 +00:00
oliverbooth-blog:
container_name: blog.oliverbooth.dev
pull_policy: build
2023-08-13 15:38:56 +00:00
build:
context: .
dockerfile: OliverBooth/Dockerfile
2023-08-12 19:45:09 +00:00
volumes:
- type: bind
2023-08-13 15:38:56 +00:00
source: /var/log/oliverbooth/blog
2023-08-12 19:45:09 +00:00
target: /app/logs
- type: bind
2023-08-13 15:38:56 +00:00
source: /etc/oliverbooth/blog
2023-08-12 19:45:09 +00:00
target: /app/data
2023-08-13 15:38:56 +00:00
ports:
- "2846:2846"
2023-08-12 19:45:09 +00:00
restart: always