Skip to content

Commit 0c616ff

Browse files
chore(templates): qualify container image refs with registry
1 parent 7149775 commit 0c616ff

18 files changed

Lines changed: 27 additions & 27 deletions

templates/apps/django-with-redis-0.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-django-with-redis",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-django-with-redis",
1111
"env": {
1212
"REDIS_URL": "redis://localhost:6379"
1313
},
@@ -20,7 +20,7 @@
2020
]
2121
},
2222
"db": {
23-
"image": "redis:7-alpine",
23+
"image": "docker.io/redis:7-alpine",
2424
"volumes": [{ "name": "redis-data", "mount": "/data", "size": 5 }]
2525
}
2626
}

templates/apps/fastapi-with-redis-0.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-fastapi-with-redis",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-fastapi-with-redis",
1111
"env": {
1212
"REDIS_URL": "redis://localhost:6379"
1313
},
@@ -20,7 +20,7 @@
2020
]
2121
},
2222
"redis": {
23-
"image": "redis:latest",
23+
"image": "docker.io/redis:latest",
2424
"volumes": [{ "name": "data", "mount": "/data", "size": 1 }]
2525
}
2626
}

templates/apps/flask-0.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-flask",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-flask",
1111
"endpoints": [
1212
{
1313
"type": "cdn",

templates/apps/flask-with-redis-0.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-flask-with-redis",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-flask-with-redis",
1111
"env": {
1212
"REDIS_URL": "redis://localhost:6379"
1313
},
@@ -20,7 +20,7 @@
2020
]
2121
},
2222
"db": {
23-
"image": "redis:7-alpine",
23+
"image": "docker.io/redis:7-alpine",
2424
"volumes": [{ "name": "redis-data", "mount": "/data", "size": 5 }]
2525
}
2626
}

templates/apps/go-api-0.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-go-api",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-go-api",
1111
"endpoints": [
1212
{
1313
"type": "cdn",

templates/apps/go-api-with-redis-0.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-go-api-with-redis",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-go-api-with-redis",
1111
"env": {
1212
"REDIS_URL": "redis://localhost:6379"
1313
},
@@ -20,7 +20,7 @@
2020
]
2121
},
2222
"redis": {
23-
"image": "redis:7-alpine",
23+
"image": "docker.io/redis:7-alpine",
2424
"volumes": [{ "name": "data", "mount": "/data", "size": 1 }]
2525
}
2626
}

templates/apps/hono-api-0.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-hono-api",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-hono-api",
1111
"endpoints": [
1212
{
1313
"type": "cdn",

templates/apps/hono-api-with-duckdb-0.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-hono-api-with-duckdb",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-hono-api-with-duckdb",
1111
"env": {
1212
"DB_PATH": "/data/store.duckdb"
1313
},

templates/apps/laravel-with-mariadb-0.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"app": {
10-
"image": "jamie-at-bunny/mc-template-laravel-with-mariadb",
10+
"image": "ghcr.io/jamie-at-bunny/mc-template-laravel-with-mariadb",
1111
"env": {
1212
"DB_CONNECTION": "mariadb",
1313
"DB_HOST": "127.0.0.1",
@@ -28,7 +28,7 @@
2828
]
2929
},
3030
"db": {
31-
"image": "mariadb:latest",
31+
"image": "docker.io/mariadb:latest",
3232
"env": {
3333
"MARIADB_ROOT_PASSWORD": "{{generate:root_password}}",
3434
"MARIADB_ALLOW_EMPTY_ROOT_PASSWORD": "0",

templates/apps/minecraft-0.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"regions": ["DE"],
88
"containers": {
99
"world": {
10-
"image": "itzg/minecraft-server:latest",
10+
"image": "docker.io/itzg/minecraft-server:latest",
1111
"env": {
1212
"EULA": "TRUE",
1313
"MAX_PLAYERS": "5",

0 commit comments

Comments
 (0)