Skip to content

Commit cb413c6

Browse files
Merge pull request #11 from CarterPerez-dev/go-backend-template
Go backend template
2 parents cadff8a + 4412e70 commit cb413c6

File tree

6 files changed

+4
-14
lines changed

6 files changed

+4
-14
lines changed

backends/fastapi/cloudflared.compose.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,3 @@ services:
2525
cpus: '0.1'
2626
memory: 32M
2727
restart: unless-stopped
28-
29-
networks:
30-
backend:
31-
external: true
32-
name: ${APP_NAME:-fastapi-api}_backend

backends/fastapi/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646
restart: unless-stopped
4747

4848
db:
49-
image: postgres:17-alpine
49+
image: postgres:18-alpine
5050
container_name: ${APP_NAME:-fastapi-api}-db
5151
ports:
5252
- "${POSTGRES_HOST_PORT:-5500}:5432"

backends/fastapi/dev.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
restart: unless-stopped
4242

4343
db:
44-
image: postgres:17-alpine
44+
image: postgres:18-alpine
4545
container_name: ${APP_NAME:-fastapi-api}-db-dev
4646
ports:
4747
- "${POSTGRES_HOST_PORT:-5501}:5432"

stacks/fastapi-react/cloudflared.compose.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,3 @@ services:
2525
cpus: '0.1'
2626
memory: 32M
2727
restart: unless-stopped
28-
29-
networks:
30-
backend:
31-
external: true
32-
name: ${APP_NAME:-fastapi-react}_backend

stacks/fastapi-react/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ services:
7474
restart: unless-stopped
7575

7676
db:
77-
image: postgres:17-alpine
77+
image: postgres:18-alpine
7878
container_name: ${APP_NAME:-fastapi-react}-db
7979
ports:
8080
- "${POSTGRES_HOST_PORT:-4426}:5432"

stacks/fastapi-react/dev.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ services:
7676
restart: unless-stopped
7777

7878
db:
79-
image: postgres:17-alpine
79+
image: postgres:18-alpine
8080
container_name: ${APP_NAME:-fastapi-react}-db-dev
8181
ports:
8282
- "${POSTGRES_HOST_PORT:-4427}:5432"

0 commit comments

Comments
 (0)