Skip to content

Commit 1df1b47

Browse files
remove extra files
1 parent de7f79e commit 1df1b47

3 files changed

Lines changed: 64 additions & 150 deletions

File tree

.env.example

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Docker Compose Environment Variables for Ubuntu FIPS Base Image
2+
# Copy this file to .env and modify values as needed
3+
4+
# Build Arguments
5+
BUILD_DATE=2025-01-21T00:00:00Z
6+
VERSION=jammy-22.04
7+
8+
# S6 Overlay Configuration
9+
S6_OVERLAY_VERSION=3.1.6.2
10+
S6_OVERLAY_ARCH=x86_64
11+
MODS_VERSION=v3
12+
PKG_INST_VERSION=v1
13+
LSIOWN_VERSION=v1
14+
15+
# Ubuntu Configuration
16+
REL=jammy
17+
ARCH=amd64
18+
19+
# User/Group IDs (default abc user is 911:911)
20+
PUID=911
21+
PGID=911
22+
23+
# Timezone
24+
TZ=Etc/UTC
25+
26+
# Volume paths (adjust to your host paths)
27+
CONFIG_PATH=./config
28+
APP_PATH=./app
29+
30+
# ECR Configuration (if using ECR for base images)
31+
# ECR_ACCOUNT_ID=your-aws-account-id
32+
# ECR_REGION=us-east-1

Dockerfile.aarch64

Lines changed: 0 additions & 150 deletions
This file was deleted.

docker-compose.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
services:
3+
ubuntu-fips:
4+
build:
5+
context: .
6+
dockerfile: Dockerfile
7+
args:
8+
- BUILD_DATE=${BUILD_DATE:-2025-01-21T00:00:00Z}
9+
- VERSION=${VERSION:-jammy-22.04}
10+
- S6_OVERLAY_VERSION=${S6_OVERLAY_VERSION:-3.1.6.2}
11+
- S6_OVERLAY_ARCH=${S6_OVERLAY_ARCH:-x86_64}
12+
- MODS_VERSION=${MODS_VERSION:-v3}
13+
- PKG_INST_VERSION=${PKG_INST_VERSION:-v1}
14+
- LSIOWN_VERSION=${LSIOWN_VERSION:-v1}
15+
- REL=${REL:-jammy}
16+
- ARCH=${ARCH:-amd64}
17+
image: gabemendoza1/cloudcode-baseimage-ubuntu-fips:${VERSION:-jammy-22.04}
18+
container_name: ubuntu-fips-base
19+
environment:
20+
- PUID=${PUID:-911}
21+
- PGID=${PGID:-911}
22+
- TZ=${TZ:-Etc/UTC}
23+
volumes:
24+
- ${CONFIG_PATH:-./config}:/config
25+
- ${APP_PATH:-./app}:/app
26+
restart: unless-stopped
27+
networks:
28+
- ubuntu-fips-network
29+
30+
networks:
31+
ubuntu-fips-network:
32+
driver: bridge

0 commit comments

Comments
 (0)