This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/docker-compose.web.yml
Didier 472dc3a840
All checks were successful
update neo with compose files / deploy the config on the server (push) Successful in 18s
update neo with compose files / notify after actions (push) Successful in 2s
bump
2023-05-01 22:10:26 +02:00

53 lines
No EOL
1.2 KiB
YAML

version: '2.2'
services:
faulty-web:
build: custom/faulty-web
restart: always
environment:
- VIRTUAL_HOST=faulty.nl
- LETSENCRYPT_HOST=faulty.nl
networks:
- proxy
- internal
ixvd-web:
build: custom/ixvd-web
restart: always
environment:
- VIRTUAL_HOST=ixvd.net
- LETSENCRYPT_HOST=ixvd.net
networks:
- proxy
- internal
ghost:
image: ghost:5.26.3-alpine
links:
- ghost_db
environment:
- database__client=mysql
- database__connection__host=ghost_db
- database__connection__user=root
- database__connection__password=i_dont_touch_the_internet
- database__connection__database=ghost
- url=https://blog.faulty.nl
# blog net blow
- LETSENCRYPT_HOST=blog.faulty.nl
- VIRTUAL_HOST=blog.faulty.nl
- VIRTUAL_PORT=2368
volumes:
- /srv/ghost/data:/var/lib/ghost/content
networks:
- proxy
- internal
ghost_db:
image: mysql:8.0
restart: always
environment:
MYSQL_ROOT_PASSWORD: i_dont_touch_the_internet
volumes:
- /srv/ghost/other/db:/var/lib/mysql
networks:
- internal