Compare commits

...

3 Commits

Author SHA1 Message Date
Raphael Martin
86cf987d1d changed licens wrong name 2024-01-05 21:05:43 +01:00
Raphael Martin
e45ef689cb changed version 2023-12-05 11:42:09 +01:00
Raphael Martin
45e560f350 changed default network 2023-11-26 12:14:22 +01:00
2 changed files with 7 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2023 docker
Copyright (c) 2023 altogether
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@@ -1,11 +1,12 @@
version: '1'
version: '3.8'
networks:
default:
name: "${TRAEFIK_NETWORK}"
external: true
db:
name: "${PROJECT_NAME}_planka_db_net"
external: false
traefik:
name: "${TRAEFIK_NETWORK}"
external: true
services:
planka:
container_name: "${PROJECT_NAME}_planka"
@@ -25,7 +26,7 @@ services:
- "${PROJECT_DATA}/${PROJECT_NAME}-planka/planka/project-background-images:/app/public/project-background-images"
- "${PROJECT_DATA}/${PROJECT_NAME}-planka/planka/attachments:/app/private/attachments"
networks:
- "db"
- "traefik"
environment:
- "BASE_URL=https://${PROJECT_URL}"
- "TRUST_PROXY=0"
@@ -52,8 +53,6 @@ services:
container_name: "${PROJECT_NAME}_planka_db"
image: "postgres:alpine"
restart: "unless-stopped"
networks:
- "db"
labels:
# Watchtower add to auto update
- "com.centurylinklabs.watchtower.enable=true"