mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 08:13:18 +01:00
8a17193dd0
This makes text files compliant to POSIX which requires every line of a text file to end with a newline character [1][2]. [1] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_403 [2] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
37 lines
825 B
YAML
37 lines
825 B
YAML
---
|
|
services:
|
|
mariadb:
|
|
image: linuxserver/mariadb
|
|
container_name: mariadb
|
|
environment:
|
|
- PUID=1001
|
|
- PGID=1001
|
|
- MYSQL_ROOT_PASSWORD=mariadbpassword
|
|
- TZ=Europe/Berlin
|
|
- MYSQL_DATABASE=WP_database
|
|
- MYSQL_USER=WP_dbuser
|
|
- MYSQL_PASSWORD=WP_dbpassword
|
|
volumes:
|
|
- /opt/webserver_swag/config/mariadb:/config
|
|
restart: unless-stopped
|
|
swag:
|
|
image: linuxserver/swag
|
|
container_name: swag
|
|
cap_add:
|
|
- NET_ADMIN
|
|
environment:
|
|
- PUID=1001
|
|
- PGID=1001
|
|
- TZ=Europe/Berlin
|
|
- URL=do-test-1.the-digital-life.com
|
|
- SUBDOMAINS=
|
|
- VALIDATION=http
|
|
volumes:
|
|
- /opt/webserver_swag/config:/config
|
|
ports:
|
|
- 443:443
|
|
- 80:80 # optional
|
|
depends_on:
|
|
- mariadb
|
|
restart: unless-stopped
|