diff options
| author | _Tradam <[email protected]> | 2025-09-17 19:41:18 +0900 |
|---|---|---|
| committer | _Tradam <[email protected]> | 2025-09-17 19:41:18 +0900 |
| commit | 9947fb5f4880fd92bfd7ba3ed40631daae0c5a49 (patch) | |
| tree | f28ff6e68561c33dadc4125e288f1ca798508976 | |
| parent | 664bfdc950d5cab852035348ee2d47d235f86224 (diff) | |
| download | wordpress-docker-9947fb5f4880fd92bfd7ba3ed40631daae0c5a49.tar.gz wordpress-docker-9947fb5f4880fd92bfd7ba3ed40631daae0c5a49.zip | |
add doploy network to docker-compose
| -rw-r--r-- | docker-compose.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index d1678d5..c0d158c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,8 +8,11 @@ services: - php - mysql ports: - - 3001:80 +# - 80:80 # - 443:443 + + networks: + - dokploy-network labels: - "traefik.enable=true" - "traefik.http.routers.wordpress.rule=Host(`malcz.com`)" @@ -40,3 +43,6 @@ services: volumes: - ./wordpress:/var/www/html entrypoint: ['wp', '--allow-root'] +networks: + dokploy-network: + external: true |
