diff --git a/listmonk/docker-compose.yml b/listmonk/docker-compose.yml index 7efb0fa..2f62068 100644 --- a/listmonk/docker-compose.yml +++ b/listmonk/docker-compose.yml @@ -1,3 +1,4 @@ +# NOT TESTED # NOTE: This docker-compose.yml is meant to be just an example guideline # on how you can achieve the same. It is not intented to run out of the box # and you must edit the below configurations to suit your needs. @@ -64,4 +65,22 @@ networks: listmonk: volumes: - listmonk-data: \ No newline at end of file + listmonk-data: + +version: '3' + +services: + listmonk: + image: listmonk/listmonk:latest + container_name: listmonk + restart: always + ports: + - "9000:9000" + volumes: + - ./data/listmonk:/app/data + environment: + - SECRET_KEY= + - DB_PROVIDER=sqlite3 + - DB_SOURCE=/app/data/listmonk.db + - WEB_SERVER_HOST=localhost + - WEB_SERVER_PORT=9000 diff --git a/matomo/docker-compose.yml b/matomo/docker-compose.yml index a30bf08..c65fe99 100644 --- a/matomo/docker-compose.yml +++ b/matomo/docker-compose.yml @@ -7,6 +7,9 @@ # MATOMO_MYSQL_PASSWORD=ChangeThisPassword # NETWORKNAME=admin_web # DB_V=11.3.2 +# +# Examples: +# https://github.com/matomo-org/docker/blob/master/.examples/apache/docker-compose.yml ################################################################################ version: '3.8'