docker multi-images
This commit is contained in:
parent
9888810b73
commit
c4ba156ea1
10 changed files with 138 additions and 12 deletions
55
docker/amd64/Dockerfile
Normal file
55
docker/amd64/Dockerfile
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
|
||||
FROM ubuntu:22.04 AS base
|
||||
LABEL maintainer="Jun Kurihara"
|
||||
|
||||
SHELL ["/bin/sh", "-x", "-c"]
|
||||
ENV SERIAL 2
|
||||
|
||||
########################################
|
||||
FROM base as builder
|
||||
|
||||
ENV CFLAGS=-Ofast
|
||||
ENV BUILD_DEPS curl make ca-certificates build-essential
|
||||
|
||||
WORKDIR /tmp
|
||||
|
||||
COPY . /tmp/
|
||||
|
||||
ENV RUSTFLAGS "-C link-arg=-s"
|
||||
|
||||
RUN update-ca-certificates 2> /dev/null || true
|
||||
|
||||
RUN apt-get update && apt-get install -qy --no-install-recommends $BUILD_DEPS && \
|
||||
curl -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain stable && \
|
||||
export PATH="$HOME/.cargo/bin:$PATH" && \
|
||||
echo "Building rpxy from source" && \
|
||||
cargo build --release && \
|
||||
strip --strip-all /tmp/target/release/rpxy
|
||||
|
||||
########################################
|
||||
FROM base AS runner
|
||||
|
||||
ENV TAG_NAME=amd64
|
||||
ENV RUNTIME_DEPS logrotate ca-certificates
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -qy --no-install-recommends $RUNTIME_DEPS && \
|
||||
apt-get -qy clean && \
|
||||
apt-get -qy autoremove &&\
|
||||
rm -fr /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/* /var/log/apt/* /var/log/*.log &&\
|
||||
mkdir -p /opt/rpxy/sbin &&\
|
||||
mkdir -p /var/log/rpxy && \
|
||||
touch /var/log/rpxy/rpxy.log
|
||||
|
||||
COPY --from=builder /tmp/target/release/rpxy /opt/rpxy/sbin/rpxy
|
||||
COPY ./docker/${TAG_NAME}/run.sh /
|
||||
COPY ./docker/entrypoint.sh /
|
||||
|
||||
RUN chmod 755 /run.sh && \
|
||||
chmod 755 /entrypoint.sh
|
||||
|
||||
EXPOSE 80 443
|
||||
|
||||
CMD ["/entrypoint.sh"]
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
61
docker/amd64/run.sh
Normal file
61
docker/amd64/run.sh
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
|
||||
#!/usr/bin/env sh
|
||||
|
||||
LOG_FILE=/var/log/rpxy/rpxy.log
|
||||
CONFIG_FILE=/etc/rpxy.toml
|
||||
LOG_SIZE=10M
|
||||
LOG_NUM=10
|
||||
|
||||
# logrotate
|
||||
if [ $LOGROTATE_NUM ]; then
|
||||
LOG_NUM=${LOGROTATE_NUM}
|
||||
fi
|
||||
if [ $LOGROTATE_SIZE ]; then
|
||||
LOG_SIZE=${LOGROTATE_SIZE}
|
||||
fi
|
||||
|
||||
cat > /etc/logrotate.conf << EOF
|
||||
# see "man logrotate" for details
|
||||
# rotate log files weekly
|
||||
weekly
|
||||
# use the adm group by default, since this is the owning group
|
||||
# of /var/log/syslog.
|
||||
su root adm
|
||||
# keep 4 weeks worth of backlogs
|
||||
rotate 4
|
||||
# create new (empty) log files after rotating old ones
|
||||
create
|
||||
# use date as a suffix of the rotated file
|
||||
#dateext
|
||||
# uncomment this if you want your log files compressed
|
||||
#compress
|
||||
# packages drop log rotation information into this directory
|
||||
include /etc/logrotate.d
|
||||
# system-specific logs may be also be configured here.
|
||||
EOF
|
||||
|
||||
cat > /etc/logrotate.d/rpxy << EOF
|
||||
${LOG_FILE} {
|
||||
dateext
|
||||
daily
|
||||
missingok
|
||||
rotate ${LOG_NUM}
|
||||
notifempty
|
||||
compress
|
||||
delaycompress
|
||||
dateformat -%Y-%m-%d-%s
|
||||
size ${LOG_SIZE}
|
||||
copytruncate
|
||||
}
|
||||
EOF
|
||||
|
||||
cp -p /etc/cron.daily/logrotate /etc/cron.hourly/
|
||||
service cron start
|
||||
|
||||
# debug level logging
|
||||
if [ -z $LOG_LEVEL ]; then
|
||||
LOG_LEVEL=info
|
||||
fi
|
||||
echo "rpxy: Logging with level ${LOG_LEVEL}"
|
||||
|
||||
RUST_LOG=${LOG_LEVEL} /opt/rpxy/sbin/rpxy --config ${CONFIG_FILE}
|
||||
Loading…
Add table
Add a link
Reference in a new issue